feat: premium UI redesign - design system, auth pages, dashboard CSS, focus mode & smart paste#736
Open
lucifers-0666 wants to merge 10 commits into
Open
Conversation
- Added signin.html — standalone sign-in page with proper <form>, Enter key support, loading state, and error handling - Added signup.html — standalone sign-up page with same UX polish, redirects to signin.html after successful registration - Added css/auth.css — scoped auth stylesheet, zero overlap with dashboard styles, responsive down to 375px - Added js/auth.js — shared auth utilities: getUser(), logout(), requireAuth() auth guard, auto-wires logout button on any page - Updated index.html — removed floating auth modal entirely, added requireAuth() guard so unauthenticated users redirect to /signin.html, wired /js/auth.js for logout + session management Auth flow: Unauthenticated → index.html redirects to /signin.html Successful login → /signin.html redirects to / Successful signup → /signup.html redirects to /signin.html Logout → redirects to /signin.html Fixes Charushi06#562 — Enter key now works via native form submit semantics
…harushi06#534 - fix(Charushi06#536): add missing + operator between renderGroup calls in renderTasks() - fix(Charushi06#523): badge counts are already dynamic in renderTasks(); removed duplicate addItemsBtn event listener that caused double-add bug (Charushi06#521) - fix(Charushi06#534): add MIT LICENSE file
…e modal, dark mode, toast notifications, mobile layout & duplicate button
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🚀 Premium UI Redesign
This PR brings a complete premium dark SaaS redesign to StudyPlan.
✅ What's Changed
Auth Flow
signin.html— standalone sign-in page with form, Enter key support, loading state & error handlingsignup.html— standalone sign-up page, redirects to signin after registrationcss/auth.css— scoped auth stylesheet, responsive down to 375pxjs/auth.js— shared auth utilities:getUser(),logout(),requireAuth()guardindex.html, addedrequireAuth()guardDashboard CSS (
css/index.css)Bug Fixes
+operator between renderGroup calls inrenderTasks()addItemsBtnevent listenerdoSignOutwithdoLogoutto matchauth.jsexports📱 Responsive
Tested at 375px (mobile), 768px (tablet), 1024px, 1280px+
Part of GSSoC 2026 contribution